﻿@charset "utf-8";
/* CSS Document */
body {
	margin: 0px;
	padding: 0px;
	position: relative;
	
}
body.menu-open {
	overflow-y: hidden!important;
}

@media(min-width:992px) {
body {
	padding-top: 90px;
}
}
body, html {
	font-family: Arial, "微软雅黑", Microsoft YaHei;
	min-width: 1230px;
}
dd, dl, dt, ul, li {
	margin: 0;
	padding: 0;
	list-style: none;
}
input {
	margin: 0;
	outline: none
}
a {
	text-decoration: none;
}
a:link {
	color: inherit;
}/*未访问样式*/
a:hover {
	text-decoration: none;
}
a:focus {
	text-decoration: none;
}
a:hover, a:focus, input:hover, input:focus, button:focus, button:hover {
	outline: none;
}
h1 {
	margin: 0px;
}
i {
	font-weight: normal;
}
hr {
	border: none;
	border-top: 1px solid #f0f0f0;
	margin: 10px 0px;
}
img {
	max-width: 100%;
}
pre {
	display: block;
	border: none;
	background: none;
	padding: 0px;
	white-space: pre-wrap;
	font-family: Arial, "微软雅黑", Microsoft YaHei;
}
.red {
	color: #005bac;
}
.blue{
	color: #005bac;
}

.white{
	color: #fff;
}
::-webkit-scrollbar-track {
background:#CCC;
}
::-webkit-scrollbar {
width: 10px;
}
::-webkit-scrollbar-thumb {
background:#333;
}
/*滚动条设置*/

/*表格边框样式*/
table, tbody, tr, td {
	border: none;
}
table tr {
	border-right: 1px solid #e6e6e6;
	border-bottom: 1px solid #e6e6e6;
}
table td {
	font-size: 0.85rem;
	line-height: 1.5em;
	padding: 15px;
	border-left: 1px solid #e6e6e6;
	border-top: 1px solid #e6e6e6;
}
table td p {
	margin: 0px;
}
/*boostrap遮罩层导致页面抖动*/
.modal-open {
	overflow: scroll !important;
}

/*页面内容宽度*/
.container {
	width: 90%;
	max-width: 1430px;
	min-width: 1200px;
}
/*盒子*/
.padding-box {
	padding-top: 9vh;
	padding-bottom: 9vh;
}
.padding-top {
	padding-top: 9vh;
}
.padding-bottom {
	padding-bottom: 9vh;
}
.main {
	position: relative;
	z-index: 2;
	background: #fff;
}
.gray-box {
	background: #f7f7f7;
}
.clear-box:after {
	content: "";
	display: block;
	width: 100%;
	height: 0;
}





/*页面haed*/	
/*头部*/	
#head {
	display: flex;
	flex-wrap: nowrap;
	height: 90px;
	padding-top: 0;
	padding-bottom: 0;
	background: #fff;
	box-shadow: 0 0 4vh rgba(0,0,0,0.1);
}
@media(min-width:1200px) {
 #head{
	padding-left: 10%;
} 
}
/*头部标志*/
.navbar-brand {
	height: 100%;
	display: flex;
	align-items: center;
}
.navbar-brand img {
	height: 60px;
}
/*头部导航*/
#head .collapse{
    justify-content: flex-end;
}
#head .navbar-nav {
	padding-right: 90px;
	flex-direction: row  !important;
}
#head .navbar-nav li {
	margin: 0 10px;
}
#head .navbar-nav li a {
	position: relative;
	display: inline-block;
	padding: 0 15px;
	font-size: .9375rem;
	line-height: 2em;
	color: #333;
}
#head .navbar-nav li a:hover {
	color: #005bac;
}
#head .navbar-nav li.on a {
	color: #fff;
}
#head .navbar-nav li.on a:after {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0px;
	left: 0%;
	width: 100%;
	height: 100%;
	background-color: #005bac;
}
@media(min-width:1200px) {
 #head .navbar-nav {
	padding-right: 10%;
} 
}
/*头部菜单按钮*/
.menu-button {
	position: fixed;
	z-index: 1081;
	top: 0;
	right: 0px;
	width: 90px;
	height: 90px;
	border: none;
	padding: 0;
	font-size: 0;
	background: #005bac;
	transition: all 0.3s ease-in-out;
}
.menu-open .menu-button {
	background: #f2f2f2;
}
.menu-button span {
	width: 24px;
	height: 2px;
	border-radius: 6px;
	background-color: #f7f7f7;
	display: block;
	margin: 5px auto;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.menu-open .menu-button span {
	background-color: #333;
}
.menu-button:hover {
	cursor: pointer;
}
.menu-open .menu-button span:nth-child(2) {
	opacity: 0;
}
.menu-open .menu-button span:nth-child(1) {
	-webkit-transform: translateY(7px) rotate(45deg);
	-ms-transform: translateY(7px) rotate(45deg);
	-o-transform: translateY(7px) rotate(45deg);
	transform: translateY(7px) rotate(45deg);
}
.menu-open .menu-button span:nth-child(3) {
	-webkit-transform: translateY(-7px) rotate(-45deg);
	-ms-transform: translateY(-7px) rotate(-45deg);
	-o-transform: translateY(-7px) rotate(-45deg);
	transform: translateY(-7px) rotate(-45deg);
}

/*菜单*/
#menu {
	position: fixed;
	z-index: 1080;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	background: url(../images/menu_bg.jpg) center no-repeat, #fff;
	background-size: cover;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.1s linear;
	-moz-transition: all 0.1s linear;
	-ms-transition: all 0.1s linear;
	-o-transition: all 0.1s linear;
	transition: all 0.1s linear;
}
.menu-open #menu {
	opacity: 1;
	visibility: visible;
	-webkit-transition: all 0.35s linear;
	-moz-transition: all 0.35s linear;
	-ms-transition: all 0.35s linear;
	-o-transition: all 0.35s linear;
	transition: all 0.35s linear;
}
.menu-navbar-brand {
	position: absolute;
	z-index: 1;
	left: 0;
	right: 0;
	top: 0;
	padding: 0 16px;
	height: 90px;
	display: flex;
	align-items: center;
}
.menu-navbar-brand img {
	height: 60px;
}
.menu-nav {
	counter-reset: compteListe;
	padding-left: 3rem;
}
.menu-nav li {
	-webkit-transform: translateY(6vh);
	-moz-transform: translateY(6vh);
	-ms-transform: translateY(6vh);
	transform: translateY(6vh);
	opacity: 0;
	-webkit-transition: all .6s;
	-moz-transition: all .6s;
	transition: all .6s;
}
.menu-open #menu .menu-nav li {
	opacity: 1;
	-webkit-transform: translateY(0px);
	-moz-transform: translateY(0px);
	-ms-transform: translateY(0px);
	transform: translateY(0px);
}
.menu-nav>li>a {
	position: relative;
	font-size: 2rem;
	line-height: 2em;
	color: #333;
	transition: all .4s
}
.menu-nav>li>a:hover, .menu-nav>li.on>a {
	color: #005bac;
	text-decoration: underline;
}
.menu-nav>li>a::before {
	counter-increment: compteListe 1;
	content: "0" counter(compteListe);
	position: absolute;
	z-index: 1;
	bottom: 2px;
	left: -2rem;
	font-size: 1rem;
	line-height: 1em;
	font-weight: bold;
	color: inherit;
}
#menu .menu-contact {
	display: flex;
	align-items: flex-end;
	font-size: 0.85rem;
	line-height: 1.25em;
	color: #666;
}
#menu .menu-contact div {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding-left: 6%;
	border-left: 1px solid #999;
	font-size: 0.85rem;
	line-height: 1.5em;
	color: #666;
}
#menu .menu-contact h3 {
	width: 100%;
	margin-bottom: 2rem;
}
#menu .menu-contact div p {
	width: 48%;
}
#menu .menu-contact div p, #menu .menu-contact div h3 {
	-webkit-transform: translateY(6vh);
	-moz-transform: translateY(6vh);
	-ms-transform: translateY(6vh);
	transform: translateY(6vh);
	opacity: 0;
	-webkit-transition: all .6s;
	-moz-transition: all .6s;
	transition: all .6s
}
.menu-open #menu .menu-contact div p, .menu-open #menu .menu-contact div h3 {
	opacity: 1;
	-webkit-transform: translateY(0px);
	-moz-transform: translateY(0px);
	-ms-transform: translateY(0px);
	transform: translateY(0px);
}
#menu .menu-contact a {
	color: #666;
}
#menu .menu-contact a:hover {
	color: #005bac;
}
p.icon {
	position: relative;
	padding-left: 30px;
}
p.icon:before {
	position: absolute;
	z-index: 1;
	left: 0;
	top: 0;
	font-size: 1.25rem;
	width: 20px;
	height: 20px;
	line-height: 1em;
	text-align: center;
	color: #4d4d4d;
}


/*banner按钮*/
#counter2 {
	position: absolute;
	z-index: 2;
	left: 120px;
	bottom: 50px;
	font-size: 1.75rem;
	line-height: 0.8em;
	font-weight: bold;
}
#banner {
	position: relative;
	overflow: hidden;

}


@media(min-width:1600px) {
#banner {
	position: relative;
}
}

@media(min-width:992px) {

.banner-wap {
	display: none!important;
}
#banner{
		margin: 0px;
}
#banner .item a {
	display: block;
	width: 100%;
	height: 100%;
}
}

#banner .owl-nav {
	position: absolute;
	z-index: 2;
	bottom: 0px;
	right: 90px;
	background: #fff;
	margin: 0;
	padding: 20px;
	padding-left: 30px;
	line-height: 36px;
}
#banner .owl-nav #counter {
	display: inline-block;
	margin-right: 40px;
	font-weight: bold;
	font-size: 18px;
	color: #999;
	vertical-align: bottom;
}
#banner .owl-nav #counter span {
	color: #333;
	vertical-align: bottom;
}
#banner .owl-nav #interval {
	display: inline-block;
	height: 20px;
	width: 1px;
	margin: 8px;
	background: #ccc;
	vertical-align: bottom;
}
#banner .owl-nav [class*=owl-] {
	color: #FFF;
	font-size: 14px;
	margin: 0px;
	padding: 0px;
	display: inline-block;
	width: 36px;
	height: 36px;
	line-height: 36px;
	cursor: pointer;
	border-radius: 3px;
	outline: none;
	vertical-align: bottom;
}
#banner .owl-nav [class*=owl-]:hover {
	text-decoration: none
}
#banner .owl-nav .disabled {
	opacity: 0.3;
	cursor: default
}
#banner .owl-nav [class*=owl-] i {
	display: inline-block;
	font-size: 28px;
	height: inherit;
	line-height: inherit;
	color: #333;
	transition: all .4s;
}
#banner .owl-nav [class*=owl-]:hover i {
	color: #005bac;
}
#banner .owl-nav [class*=owl-] i {
	color: #333;
}
/*banner按钮*/


/* 首页服务项目 */
.index-technology{
	background:url(../images/index-t-bg.jpg) top center; background-size: cover;
}
#index-t .owl-stage{
	display: flex;
}
#index-t .owl-item{
	padding:20px 15px;
}
#index-t .item{
	height: 100%;
	background: #fff;
	transition:all .4s;  
}
#index-t .item:hover{
	box-shadow: 0 0 20px rgba(0,0,0,0.2);
}
#index-t .index-t-img{
	display: block;
	overflow: hidden;
}
#index-t .index-t-txet{
	padding: 25px;
}
#index-t .index-t-title{
	display: block;
	margin-bottom: 10px;
	font-size: 24px;
	color: #005bac;
}
#index-t .index-t-title:hover{
	color: #005bac;
}


#index-t .index-t-txet pre{
	font-size: 14px;
	color: #666;
	margin-bottom: 0px;
}
#index-t .owl-nav button{
	position: absolute;
	top: 50%;
	margin-top: -25px;
}
#index-t .owl-nav button.owl-prev{
	left: -60px;
}
#index-t .owl-nav button.owl-next{
	right:-60px;
}
#index-t .owl-nav i{
	display: inline-block;
	width: 50px;
	height: 50px;
	line-height: 50px;
	font-size: 24px;
	text-align: center;
	background: #333;
	color: #fff;
	transition:all .4s;  
}
#index-t .owl-nav button:hover i{
	background: #005bac;
}
#index-t .owl-nav button.disabled:hover i{
	background: #333;
}

/*首页关于*/

.index-about{
	min-height: 80vh;
	background: url(../images/index-a-bg.jpg) center bottom;
	background-size: cover;
}
.index-title{
	font-size: 30px;
	letter-spacing: 2px;
	color: #333;
}
.index-title.white{
	color: #fff;
}

.index-about .index-title{
	padding-top: 4vh;
}
.index-a-info{
	max-width: 600px;
	margin:30px auto 0;
	font-size: 17px;
	line-height: 1.75em;
}


/*首页服务*/
.index-s{
	display: flex;
	flex-wrap: wrap;
}
.index-s li{
	position: relative;
	width: 25%;
	padding:  0 25px 15px;
	text-align: center;
}
.index-s li:after{ content:""; position: absolute;  z-index:-1;bottom: 0px;left: 50%; margin-left: -15px; width: 30px;height: 1px;background-color:#005bac;}
.index-s li .index-s-title{
	font-size: 18px;
	margin: 25px 0 15px;
	color: #005bac;
}
.index-s li pre{
	font-size: 15px;
	color: #666;
}


/*图片放大*/
.zoom-img {
	overflow: hidden;
}
.zoom-img img {
	width: 100%;
	transform: scale(1);
	transition: all ease 0.6s;
}
.zoom-img:hover img {
	transform: scale(1.1);
}
/*点状背景*/
.point-bg {
	background-image: url(../images/point.png);
	background-repeat: repeat;
}




/*页脚*/
#foot {
	position: relative;
	background: #f7f7f7;
	width: 100%;
}
#foot:before{ content:"";display: block; width: 100%;height:3px;background: linear-gradient(to right,#005bac,#00a0e1);}
.font-container{
	padding-top: 5vh;
	padding-bottom: 5vh;
}
.foot-logo img{
	height: 70px;
}
.foot-aside{
	display: flex;
	justify-content: space-between;
}

.foot-nav{
	display: flex;
	justify-content: space-between;
	width: 560px;
	font-size: 15px;
}
.foot-nav li {
}
.foot-nav>li>a{
	display: inline-block;
	margin-bottom: 10px;
	font-size: 17px;
	color: #005bac;
}
.foot-nav  dl dd a{
	font-size: 15px;
	line-height: 30px;
	color: #666;
	transition:all .3s;    
}
.foot-nav dl dd a:hover{
	color: #005bac;
}



.foot-contact{
	padding-left: 40px;
	font-size: 15px;
	line-height: 30px;
}
.foot-contact p{
	margin: 0px;
}


.foot-copyright {
	padding: 12px 0;
	width: 100%;
	border-top:1px solid #ebebeb;
	overflow: hidden;
}
.foot-copyright p, .foot-copyright span, .foot-copyright a {
	float: left;
	display: inline-block;
	margin: 0px;
	font-size: 13px;
	line-height: 20px;
	color: #666;
	transition: all ease .4s;
}
.foot-copyright a {
	margin: 0px 4px;
}
.foot-copyright a:hover {
	color: #005bac;
}
/*============ 首页end ============*/

/*内页公共*/
/*内页banner*/
.inside-banner-box {
	position: relative;
	overflow: hidden;
}
.inside-banner {
	display: flex;
	z-index: -2;
	left: 0;
	bottom: 0;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 400px;
	background-size: cover;
	background-position: center;
	overflow: hidden;
}

/*面包屑*/
.breadcrumb-box {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
}
.breadcrumb {
	margin: 0px auto;
	border: nonr;
	border-radius: 0;
	width: 100%;
	text-align: right;
	padding: 0 60px;
	font-size: 12px;
	color: #fff;
	line-height: 40px;
	background: -webkit-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,.3));
	background: -o-linear-gradient(right, rgba(0,0,0,0), rgba(0,0,0,.3));
	background: -moz-linear-gradient(right, rgba(0,0,0,0), rgba(0,0,0,.3));
	background: linear-gradient(to right, rgba(0,0,0,0), rgba(0,0,0,.3));
}
.breadcrumb a {
	display: inline-block;
	font-size: 0.85rem;
	line-height: 1em;
	color: #fff;
	transition: all .4s;
}
.breadcrumb a:hover {
	color: #005bac;
}
.breadcrumb span {
	display: inline-block;
	margin: 0 5px;
	color: #fff;
}


/*内页导航*/
.inside-nav {
	background: #fff;
	border-bottom: 1px solid #ebebeb;
}

#subnav {
	margin: 0;
}
#subnav .panel-default {
	background: none;
	border: none;
	box-shadow: none;
}
#subnav .panel-heading {
	display: none;
}
#subnav .panel-body {
	border: none;
	background: none;
	padding: 0px;
	padding-left: -4px;
	padding-right: -4px;
}
#subnav .panel-body li {
	display: inline-block;
}
#subnav .panel-body li a {
	display: inline-block;
	width: 100%;
	padding: 15px 30px;
	font-size: 15px;
	line-height: 26px;
	color: #666;
	transition: all .3s;
}
#subnav .panel-body li a:hover, #subnav .panel-body li a:focus {
	color: #005bac;
}
#subnav .panel-body li.on a {
	color: #fff;
	background: #005bac;
}





/*信息盒子*/
.info {
	font-size: 16px;
	color: #333;
	line-height: 1.75em;
}
.info p {
	margin: 0 0 15px;
}

/*横线*/
.line {
	display: inline-block;
	width: 36px;
	height: 2px;
	background: #005bac;
}
.line-bicolor {
	background-image: repeating-linear-gradient(90deg, #005bac 0%, #005bac 50%, #262626 50%, #262626 100%);
}


/*内页翻页*/
.page-box {
	padding-top: 30px;
}
.page {
	font-size: 0.85rem;
	line-height: 3em;
	color: #666;
}
.page span {
	display: inline-block;
	padding: 0 14px;
	margin: 0 4px;
	background: #f7f7f7;
}
.page span strong {
	font-size: 17px;
	color: #333;
}
.page a {
	display: inline-block;
	padding: 0 18px;
	font-size: 0.85rem;
	line-height: 3em;
	color: #666;
	background: #f7f7f7;
	transition: all .4s;
}
.page a:first-child {
	border-radius: 4px 0 0 4px;
}
.page a:last-child {
	border-radius: 4px 0 0 4px;
}
.page input {
	display: inline-block;
	width: 4rem;
	padding: 0px 10px;
	margin-left: 15px;
	font-size: 0.85rem;
	line-height: 3em;
	color: #666;
	border-radius: 4px 0 0 4px;
	border: none;
	box-shadow: 0 0 1px #999 inset;
	overflow: hidden;
	transition: all .4s;
}
.page button {
	padding: 0 18px;
	margin: 0px;
	border: none;
	border-radius:0 4px 4px 0;
	font-size: 0.85rem;
	line-height: 3em;
	color: #666;
	background: #f7f7f7;
	cursor:pointer;
	transition: all .4s;
}
.page a:hover,.page button:hover {
	color: #333;
	background: #ccc;
}


/*子导航*/
.sub-title h3{
	font-size: 1.5rem;
	line-height: 2em;
	margin: 0px;
	white-space:nowrap; text-overflow:ellipsis; -o-text-overflow:ellipsis; overflow:hidden;
}
#subnav {
	position: relative;
	margin: 0;
	font-size: 0.85rem;
}
#subnav>a{
	display: block;
	width: 100%;
	padding: 0 15px;
	font-size: 0.85rem;
	line-height: 3.6em;
	color: #fff;
	background: #005bac;
	transition:all .4s;
}
#subnav>a.collapsed{
	color: #666;
	background: #f7f7f7;
}
#subnav #collapseOne{
	position: absolute;
	top: 100%;
	z-index: 10;
	left: 0;
	width: 100%;
	background: #f7f7f7;
	border-top: 1px solid #ebebeb;
	transition:all .4s;
}
#subnav #collapseOne.show{
	box-shadow: 0 0 20px rgba(0,0,0,0.1);
}
#subnav #collapseOne li a{
	display: block;
	padding: 0 25px;
	border-bottom: 1px solid rgba(0,0,0,0.05);
	font-size: 0.85rem;
	line-height: 3rem;
	color: #666;
}
#subnav #collapseOne li.on a{
	color: #333;
	background: #fff;
}


/*关于*/
.blockquote{
	position: relative;
	padding: 3rem 3rem 3rem 5rem;
	margin: 0 0 7vh;
	font-size: 18px;
	line-height: 1.75em;
	letter-spacing: 1px;
	font-weight: bold;
	color: #005bac;
	background: #f5f5f5;
}
.blockquote:before{
	content:"“";
	display: inline-block;
	position:absolute;
	z-index: 2;
	left: 1.8rem;
	top: 2rem;
	font-size: 60px;
	color: #999;
}
.blockquote:after{
	content:"";
	display: inline-block;
	position:absolute;
	z-index: 2;
	left:1.8rem;
	top: 2rem;
	margin-left: 10px;
	margin-top: 20px;
	width: 1px;
	height:calc(100% - 6rem);
	background: #ccc;
}
.about-content{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.about-content .about-img{
	width: 42%;
}
.about-content .about-info{
	width: 52%;
}
.about-content .about-info p{
	text-indent: 2em;
}

/*荣誉资质*/
.honor-list{
	padding: 15px;
}
.honor-list a{
	display: block;
	min-height: 100%;
	background: #fff;
	transition: all .4s;
}
.honor-list a:hover{
	box-shadow:0 0 15px rgba(0,0,0,0.1);
	transform:translate(0%,-20px);
	background: #005bac;
}
.honor-list div{
		border: 2px solid #ebebeb;
	overflow: hidden;
		transition: all .4s;
}
.honor-list a:hover div{
		border: 2px solid #005bac;
}
.honor-list p{
	margin: 10px 0;
	font-size: 14px;
	line-height: 20px;
	color: #666;
	text-align: center;
	white-space:nowrap; text-overflow:ellipsis; -o-text-overflow:ellipsis; overflow:hidden;
	transition: all .4s;
}
.honor-list a:hover p{
	color: #fff;
}


/*企业风采*/
.style-list{
	padding: 10px;
}
.style-list a{
	display: block;
	min-height: 100%;
	background: #fff;
	transition: all .4s;
}
.style-list a:hover{
	box-shadow:0 0 15px rgba(0,0,0,0.1);
	transform:translate(0%,-20px);
	background: #005bac;
}
.style-list div{
		border: 2px solid #ebebeb;
	overflow: hidden;
		transition: all .4s;
}
.style-list a:hover div{
		border: 2px solid #005bac;
}
.style-list p{
	margin: 10px 0;
	font-size: 14px;
	line-height: 20px;
	color: #666;
	text-align: center;
	white-space:nowrap; text-overflow:ellipsis; -o-text-overflow:ellipsis; overflow:hidden;
	transition: all .4s;
}
.style-list a:hover p{
	color: #fff;
}


/*销售网络*/	
.network-box{
	position: relative;
	width: 100%;
	background: #f7f7f7;
}
.network-box .container{
	display: flex;
	justify-content: space-between;
	max-width: 1600px;
}
.network-text{
	display: flex;
	align-items: flex-end;
	max-width: 450px;
	bottom: 15%;
}
.network2{
	width: calc(100% - 500px); 
}

.network-title{
	font-size: 30px;
	line-height: 1.5em;
	color: #666;
}
.network-subtitle{
	margin-bottom: 25px;
	font-size: 28px;
	line-height: 1.5em;
	font-weight: bold;
	color: #005bac;
}
.network-text p{
	font-size: 17px;
	line-height:2rem;
	color: #666;
}
.network-select{
	position: relative;
	display: inline-block;
	margin: 4px;
}
.network-select>a{
	z-index: 3;
	display: inline-block;
	width: 240px;
	padding: 0px 15px;
	font-size: 14px;
	line-height: 40px;
	border: 1px solid #ebebeb;
	background: #fff;
}
.network-select>div{
	position: absolute;
	z-index: 4;
	top: 100%;
	left: 0;
	width: 100%;
	padding: 5px 0;
	border: 1px solid #ebebeb;
	border-top: none;
	max-height: 300px;
	overflow-y: auto;
	background: #fff;
}
.network-select li{
}
.network-select li a{
	display: inline-block;
	width: 100%;
	padding: 0 15px;
	font-size: 14px;
	line-height: 32px;
	color: #666;
	background: #fff;
	transition:all .4s; 
}
.network-select li a:hover{
	background: #f7f7f7;
}
.network{
	position: relative;
	width: 65%;
	max-width: 1000px;
	margin: 0 auto 6vh;
}
.network>img{
	width: 100%;
}
.point-list .item{
	position: absolute;
}
.point-list .item a .point{
	display: block;
	width: 8px;
    height: 8px;
	border-radius: 50%;
	background: #005bac;
}
.point-list .item a .city {
    white-space: nowrap;
    position: absolute;
    left: 50%;
    top: 100%;
    padding-top: 4px;
    font-size: 14px;
    line-height: 1em;
    color: #666;
    transform: translateX(-50%);
}
.point-list .item .sub{
	position: absolute;
	z-index: 2;
    left: 50%;
    transform: translateX(-50%);
    padding:4px 10px;
    background-color: #f7f7f7;
    bottom: 16px;
    border-radius: 4px;
	white-space:nowrap;
    visibility: hidden;
    opacity: 0;
    box-shadow: 0 0 10px rgba(0,0,0,.1);
}
.point-list .item.cur .sub{
	opacity: 1;
    visibility: visible;
}
.point-list .item .sub:before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -16px;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border: 8px solid transparent;
    border-top-color: #f7f7f7;
}
.point-list .item .sub img{
	display: inline-block;
	margin-right: 10px;
    width: 40px;
	max-width:none;
    overflow: hidden;
}
.point-list .item .sub span{
	display: inline-block;
	font-size: 12px;
	color:#666;
	line-height: 50px;
	white-space:nowrap;

}

/*logo*/
.logo-list ul {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	height: auto;
}
.logo-list ul li {
	width: 20%;
	margin-top: -1px;
	margin-left: -1px;
	border: 1px solid #ebebeb;
	transition: all .4s;
}
.logo-list ul li:hover {
	position: relative;
	border: 1px solid #005bac;
	box-shadow: 0 0 15px rgba(0,91,172,0.4);
}
.logo-list ul li a {
	position: relative;
	z-index: 1;
	display: block;
	width: 100%;
	height: 0%;
	padding-bottom: 60%;
}
.logo-list ul li a>div {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.logo-list ul li a div img {
	max-width: 100%;
	max-height: 100%;
}
.logo-list .logo-text {
	position: absolute;
	top: 100%;
	bottom: 0;
	left: 0;
	right: 0;
	flex-wrap: wrap;
	text-align: center;
	color: #fff;
	opacity: 0;
	background: rgba(0,91,172,0.9);
	overflow: hidden;
	transition: all .4s;
}
.logo-list a:hover .logo-text {
	top: 0;
	opacity: 1;
}
.logo-list .logo-text p, .logo-list .logo-text span {
	display: block;
	font-size: 14px;
	transform: translate(0%, 20px);
	opacity: 0;
	transition-delay: 0s;
	transition: all .4s;
}
.logo-list a:hover .logo-text p, .logo-list a:hover .logo-text span {
	transform: translate(0%, 0px);
	opacity: 1;
}
.logo-list .logo-text p {
	width: 100%;
	margin: 0px;
	font-size: 20px;
}
.logo-list a:hover .logo-text p {
	transition-delay: 0.55s;
}
.logo-list a:hover .logo-text span {
	transition-delay: 0.62s;
}





/*技术服务*/
.t-box{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.t-box>div{
	width: 48%;
}
.t-list li{
	display: block;
	width: 100%;
	border-bottom: 1px solid #ebebeb;
}
.t-list li:first-child{
	border-top: 1px solid #ebebeb;
}
.t-list li a{
	position: relative;
	display: block;
	font-size: 17px;
	line-height: 50px;
	color: #005bac;
	transition:all .4s;
}
.t-list li a:hover{
	text-indent: 15px;
	color: #005bac;
	background: #fafafa;
	border-left: 4px solid #005bac;
}
.t-list li a:after{content: "\e8f1"; font-family: "iconfont" !important;float: right; margin-right: 10px; color: #333; transition:all .4s;}
.t-list li a:hover:after{content: "\e8f1"; color: #005bac;  margin-right: 0px; }


/*解决方案*/
.programme .row{
	margin-left: -2.5%;
	margin-right:  -2.5%;
}
.programme-list{
	padding:25px 2.5%;
}
.programme-list>div{
	height: 100%;
	background: #f7f7f7;
	overflow: hidden;
	transition:all .4s;    
}
.programme-list>div:hover{
	background: #f2f2f2;
	box-shadow: 0 5px 20px rgba(0,0,0,0.05);  
}
.programme-list a{
	display: block;
	overflow: hidden;
}
.programme-name{
	width: 100%;
	font-size:1rem;
	line-height: 3rem;
	font-weight: bold;
	color: #333;
	text-align: center;
	white-space:nowrap; text-overflow:ellipsis; -o-text-overflow:ellipsis; overflow:hidden;
	transition:all .4s;    
}
.programme-list>div:hover .programme-name{
	color: #005bac;
}
.programme-text{
	position: relative;
	z-index: 1;
	width: 80%;
	padding: 10px 15px;
	margin:-30px auto 30px;
	background: #fff;
}
.programme-text p{
	font-size: 0.85rem;
	line-height: 1.75em;
	height: 2.975rem;
	color: #666;
	display: block; display: -webkit-box;-webkit-line-clamp: 2;-webkit-box-orient: vertical;overflow: hidden;text-overflow: ellipsis;
}


/*案例列表*/
.case-list{
	display: flex;
	flex-wrap: wrap;
	margin-left: -1%;
	margin-right: -1%;
}
.case-list>li{
	width: 25%;
	padding: 1%;
}
.case-list-img{
	position: relative;
	z-index: 1;
	height: 0px;
	padding-bottom: 90%;
	transition:all .4s;  
}
.case-list>li a:hover .case-list-img{
	box-shadow: 0 0 25px rgba(0,91,172,0.1);
}.case-list-img>div{
	position: absolute;
	z-index: 2;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #fff;
	overflow: hidden;
}
.case-list-img img{
	width: auto;
	max-width: 95%;
}
.case-list-info{
	margin-top: 15px;
}
.case-list-info p{
	margin: 0px;
	font-size: 18px;
	color: #333;
	transition:all .4s;    
}
.case-list>li a:hover .case-list-info p{
	color: #005bac;
}
.case-list-info span{
	font-size: 15px;
	color: #999;
}

/*案例详情*/

.case-title h1{ display: inline-block; padding-left: 30px; margin-left: 30px; border-left: 1px solid #ebebeb; font-size: 36px; line-height: 50px;}
.case-title img{ display: inline-block; vertical-align: bottom;height: 80px;}


.case-slogan .title{
    margin-bottom: 20px;
	font-size: 30px;
	color: #333;
}
.case-slogan p,.case-slogan span{
	font-size: 16px;
	color: #999;
}
#case-show{
	padding: 6vh 0 5vh;
	width: 90%;
	margin: auto;
}
#case-show .item{
	display: flex;
	justify-content: center;
}
#case-show .item img{
	width: auto;
	min-width:inherit;
}
#case-show .owl-nav [class*=owl-] {
	position: absolute;
	top: 48%;
	z-index: 2;
	color: #FFF;
	font-size: 14px;
	margin: 0px;
	padding: 0px;
	display: inline-block;
	width: 36px;
	height: 36px;
	line-height: 36px;
	cursor: pointer;
	border-radius: 3px;
	outline: none;
	vertical-align: bottom;
}
#case-show .owl-nav [class*=owl-].owl-prev{
	left: -40px;
}
#case-show .owl-nav [class*=owl-].owl-next{
	right: -40px;
}
#case-show .owl-nav [class*=owl-]:hover {
	text-decoration: none
}
#case-show .owl-nav [class*=owl-] i {
	display: inline-block;
	font-size: 36px;
	height: inherit;
	line-height: inherit;
	color: #333;
	transition: all .4s;
}
#case-show .owl-nav [class*=owl-]:hover i {
	color: #005bac;
}
#case-show .owl-nav [class*=owl-].disabled,#case-show .owl-nav [class*=owl-].disabled:hover {
	opacity: 0.3;
	cursor: default;
}
#case-show .owl-nav [class*=owl-].disabled:hover i{
	color: #333;
}



#case-show .owl-dots{
	margin-top: 20px;
}
#case-show .owl-dots .owl-dot{
	width: 32px;
	height: 32px;
	line-height: 32px;
	font-size: 15px;
	color: #666;
	border-radius: 50%;
}
#case-show .owl-dots .owl-dot.active{
	color: #005bac;
	border:1px solid #005bac;
}


/*服务*/
.s-ul li{
	position: relative;
	padding-left: 30px;
	font-size: 16px;
	line-height: 2em;
	color: #666;
}
.s-ul li:before {
    content: "";
    position: absolute;
    top: 4px;
    left: 0;
    width: 14px;
    height: 14px;
    border: 4px solid #005bac;
}


/*质量管理体系*/
.service-t{
	position: relative;
}
.service-t>div{
	width: 100%;
	padding: 5vh 0;
	border-bottom: 1px solid #ebebeb;
}
.service-t-list{
	display: flex;
	margin-left: -15px;
	margin-right: -15px;
}
.service-t-list li{
	width: 33.33%;
	padding:0 15px;
}
.service-t-list div{
	margin: 10px 0;
	overflow: hidden;
	transition:all .4s;  
}
.service-t-list .zoom-img:hover div{
	  box-shadow: 0 0 25px rgba(0,91,172,0.1);
}
.service-t-list .zoom-img:hover p{
	 color: #005bac;
	transition:all .4s; 
}

/*产品备货*/
#product{
	padding-top: 70px;
}
#product .item .zoom-img>div{
	overflow: hidden;
}
#product .item img{
	width: auto;
	height: 200px;
}

#product .item p{
	margin: 15px 0;
	font-size: 15px;
	color: #666;
	transition:all .4s; 
}
#product .item:hover p{
	color: #005bac;
}
#product .owl-nav{
	position: absolute;
	top:0px;
	left: 0px;
	z-index: 1;
	text-align: left;
}
#product .owl-nav [class*=owl-] {
	color: #FFF;
	font-size: 14px;
	margin: 0px;
	padding: 0px;
	display: inline-block;
	width: 36px;
	height: 36px;
	line-height: 36px;
	cursor: pointer;
	border-radius: 3px;
	outline: none;
	vertical-align: bottom;
}

#product .owl-nav [class*=owl-]:hover {
	text-decoration: none
}
#product  .owl-nav [class*=owl-] i {
	display: inline-block;
	font-size: 36px;
	height: inherit;
	line-height: inherit;
	color: #333;
	transition: all .4s;
}
#product  .owl-nav [class*=owl-]:hover i {
	display: inline-block;
	font-size: 36px;
	height: inherit;
	line-height: inherit;
	color: #005bac;
	transition: all .4s;
}
/*新闻列表*/
#news-list {
	max-width: 1200px;
}

.news-list {
	margin-left: -1.5%;
	margin-right: -1.5%;
	margin-bottom: 30px;
	display: flex;
	flex-wrap: wrap;
}
.news-list li {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	width: 30.33%;
	margin: 1.5%;
	box-shadow: 0 0 0px rgba(0,0,0,0);
	border-bottom: 2px solid #ebebeb;
	background: #f7f7f7;
	transition: all ease .4s;
}
.news-list li:hover {
	box-shadow: 0 0 20px rgba(0,0,0,0.1);
	border-bottom: 2px solid #005bac;
}
.news-list li>a {
	width: 100%;
	overflow: hidden;
}
.news-list li .news-c {
	width: 100%;
	padding-top: 20px;
}
.news-list li .news-title {
	display: inline-block;
	max-width: 100%;
	margin: 12px 0;
	font-size: 16px;
	line-height: 20px;
	font-weight: bold;
	white-space: nowrap;
	text-overflow: ellipsis;
	-o-text-overflow: ellipsis;
	overflow: hidden;
	color: #333;
	transition: all .4s;
}
.news-list li:hover .news-title {
	color: #005bac;
}
.news-list li .news-title:hover {
	text-decoration: underline;
}
.news-list li pre {
	width: 100%;
	font-size: 14px;
	line-height: 24px;
	color: #666;
	max-height: 72px;
	display: block;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}
.news-list li span {
	display: block;
	margin-top: 20px;
	font-size: 12px;
	line-height: 24px;
	color: #999;
}
.news-list li {
	padding: 25px;
}
.news-list li:hover {
	padding: 25px;
}
.news-list li:after {
	content: "\e602";
	position: absolute;
	z-index: 1;
	bottom: 20px;
	right: 80px;
	font-family: "iconfont" !important;
	font-style: normal;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-size: 24px;
	line-height: 30px;
	color: #333;
	opacity: 0;
	transition: all .4s;
}
.news-list li:hover:after {
	right: 40px;
	opacity: 1;
	color: #005bac;
	transition-delay: 0.2s;
}



/*文章详情*/
.news{
	min-height:calc(100vh - 140px);
	background: #f7f7f7;
}
.news-box{
	padding: 0 15px;
	margin: auto;
	max-width: 1200px;
}
.news-head{
	margin-bottom: 15px;
}
.news-head h3{
	margin: 0 0 5px;
	font-size: 1.5rem;
	color: #333;
}
.news-head span{
	font-size: 0.85rem;
	color: #999;
}
.news-info{
	padding: 3vh 0;
	border-top: 1px solid #e0e0e0;
	border-bottom: 1px solid #e0e0e0;
}

.news-page{
	margin-top: 3vh;
	display: flex;
	flex-wrap: wrap;
}
.news-page a{
	display: block;
	width: 50%;
	padding: 2rem 5rem;
	transition:all .4s;    
}
.news-page a:hover{
	background: #f0f0f0;
}
.news-page em{
	display: inline-block;
	width: 3.5rem;
	height: 1em;
	line-height: 1em;
	font-size: 1.75rem;
	color: #333;
}
.news-page h4{
	display: block;
	width: 100%;
	margin: 10px 0 15px;
	font-size: 1rem;
	color: #333;
	white-space:nowrap; text-overflow:ellipsis; -o-text-overflow:ellipsis; overflow:hidden;
}
.news-page a:hover h4,.news-page a:hover em{
	color: #005bac;
}
.news-page a.nomore:hover h4,.news-page a.nomore:hover em{
	color: #333;
}

.news-page span{
	display: block;
	width: 100%;
	font-size: 0.85rem;
	line-height: 1em;
	height: 2em;
	color: #999;
	white-space:nowrap; text-overflow:ellipsis; -o-text-overflow:ellipsis; overflow:hidden;
}




/*联系方式*/
.contact-box{
    background-image: url(../images/contact.jpg);
    background-position: bottom center;
    background-repeat: no-repeat;	
}
.contact-box>div{
	max-width: 1200px;
	padding-left: 15px;
	padding-right: 15px;
	margin: auto;
}




.contact{
	display: flex;
}
.contact>div{
	font-size: 0.85rem;
	line-height: 1.5em;
}
.contact>div h3{
	font-size: 1.5rem;
	font-weight: bold;
	text-transform: uppercase;
}
.contact>div p{
	margin-bottom: 15px;
}
.contact .contact-info{
	width: 42%;
	margin-right: 8%;
	padding: 40px 0 0;
}
a.tomap{
	display: inline-block;
	padding:0 18px;
	font-size: 15px;
	line-height: 36px;
	color: #333;
	background: #ebebeb;
	transition:all .4s;
}
a.tomap:hover{color: #fff;
	background: #005bac;
}



.contact .contact-feedback{
	width:50%;
	padding: 40px 0 0;
}
.feedback input {
	outline: none;
	margin-bottom: 18px;
	width: 100%;
	padding: 0px 15px;
	font-size: 0.85rem;
	line-height: 46px;
	color: #666;
	border: 1px solid #ebebeb;
	background: #fcfcfc;
	transition: all .4s;
}
.form-control {
  border: 1px solid #ebebeb;
  line-height: 44px;
  height: 44px;
  width: 100%;
  padding: 0px 15px;
  margin: 10px 0px;
  border-radius: none;
  box-shadow: 0;
}
.feedback textarea {
  border: 1px solid #ebebeb;
	font-size: 0.85rem;
  line-height: 22px;
  width: 100%;
  height: 160px;
  padding: 15px;
  margin: 10px 0px;
  outline: none;
  box-shadow: none;
  overflow-x: hidden;
	background: #fff;
}
.feedback input:focus, .feedback textarea:focus {
  border: 1px solid #005bac;
}
.feedback .submit {
  display: inline-block;
  padding: 0px 25px;
  background: #4d4d4d;
  font-size: 14px;
  line-height: 36px;
  color: #fff;
  margin: 15px 0px;
  transition: all .3s;
}
.feedback .submit:hover {
  background: #005bac;
}